home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fopen.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  2KB  |  78 lines

  1. /* 
  2.  * fopen.c --
  3.  *
  4.  *    Source code for the "fopen" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fopen.c,v 1.4 88/07/29 18:56:33 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22. #include "stdlib.h"
  23. #include <sys/file.h>
  24.  
  25. extern long lseek();
  26.  
  27. /*
  28.  *----------------------------------------------------------------------
  29.  *
  30.  * fopen --
  31.  *
  32.  *    Open a file and associate a buffered stream with the open file.
  33.  *
  34.  * Results:
  35.  *    The return value is a stream that may be used to access
  36.  *    the file, or NULL if an error occurred in opening the file.
  37.  *
  38.  * Side effects:
  39.  *    A file is opened, and a stream is initialized.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. FILE *
  45. fopen(fileName, access)
  46.     char *fileName;        /* Name of file to be opened. */
  47.     char *access;        /* Indicates type of access:  "r" for reading,
  48.                  * "w" for writing, "a" for appending, "r+"
  49.                  * for reading and writing, "w+" for reading
  50.                  * and writing with initial truncation, "a+"
  51.                  * for reading and writing with initial
  52.                  * position at the end of the file.  The
  53.                  * letter "b" may also appear in the string,
  54.                  * for ANSI compatibility, but only after
  55.                  * the first letter.  It is ignored. */
  56. {
  57.     int     streamID, flags;
  58.  
  59.     flags = StdioFileOpenMode(access);
  60.     if (flags == -1) {
  61.     return (FILE *) NULL;
  62.     }
  63.  
  64.     streamID = open(fileName, flags, 0666);
  65.     if (streamID < 0) {
  66.     return (FILE *) NULL;
  67.     }
  68.     if (access[0] == 'a') {
  69.     (void) lseek(streamID, 0L, L_XTND);
  70.     }
  71.  
  72.     /*
  73.      * Initialize the stream structure.
  74.      */
  75.  
  76.     return fdopen(streamID, access);
  77. }
  78.